#### Name Linux - List All Users | v1.0 JCCG #### commandType linux #### Command ``` awk -F'[/:]' '{if ($3 >= 1000 && $3 != 65534) print $1}' /etc/passwd ``` #### Description Lists all users on a Linux system #### *Import This Command* To import this command into your JumpCloud tenant run the below command using the [JumpCloud PowerShell Module](https://github.com/TheJumpCloud/support/wiki/Installing-the-JumpCloud-PowerShell-Module) ``` Import-JCCommand -URL 'https://git.io/jccg-Linux-ListAllUsers' ```